home *** CD-ROM | disk | FTP | other *** search
/ TOS Silver 2000 / TOS Silver 2000.iso / programm / MM2_DEV / S / DEMO / GAG.D < prev    next >
Encoding:
Modula Definition  |  1990-12-16  |  528 b   |  23 lines

  1. DEFINITION MODULE Gag;
  2.  
  3. (*
  4.  * Importiertes Modul von "GagAcc"
  5.  *)
  6.  
  7. EXPORT
  8.   Box, Text, Foset, Btan, Btaus, Btfertig,
  9.   Fttime, Ftpre;
  10.  
  11.  
  12. CONST
  13.   Box      =   0;  (* Formular/Dialog *)
  14.   Text     =   1;  (* STRING in Baum BOX *)
  15.   Foset    =   1;  (* Formular/Dialog *)
  16.   Btan     =   2;  (* BUTTON in Baum FOSET *)
  17.   Btaus    =   3;  (* BUTTON in Baum FOSET *)
  18.   Btfertig =   5;  (* BUTTON in Baum FOSET *)
  19.   Fttime   =   6;  (* FTEXT in Baum FOSET *)
  20.   Ftpre    =   7;  (* FTEXT in Baum FOSET *)
  21.  
  22. END Gag.
  23.